Fix indentation.
authorOwen Taylor <otaylor@redhat.com>
Mon, 27 Jun 2005 15:13:08 +0000 (15:13 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Mon, 27 Jun 2005 15:13:08 +0000 (15:13 +0000)
2005-06-27  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks):
        Fix indentation.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkhruler.c
gtk/gtkvruler.c

index 21b81224fe274598ef1a470bed5be25c11b71824..9ae260b00b0e22646c8ceadf390d3842480fecff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-27  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks): 
+       Fix indentation.
+
 2005-06-27  Kjartan Maraas  <kmaraas@gnome.org>
 
        * gtk/gtkhruler.c: (gtk_hruler_draw_ticks): Fix leaks
index 21b81224fe274598ef1a470bed5be25c11b71824..9ae260b00b0e22646c8ceadf390d3842480fecff 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-27  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks): 
+       Fix indentation.
+
 2005-06-27  Kjartan Maraas  <kmaraas@gnome.org>
 
        * gtk/gtkhruler.c: (gtk_hruler_draw_ticks): Fix leaks
index 21b81224fe274598ef1a470bed5be25c11b71824..9ae260b00b0e22646c8ceadf390d3842480fecff 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-27  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks): 
+       Fix indentation.
+
 2005-06-27  Kjartan Maraas  <kmaraas@gnome.org>
 
        * gtk/gtkhruler.c: (gtk_hruler_draw_ticks): Fix leaks
index 489b854904dc1ba621abe2992d6b7df3495553c5..66b176792f17d67d2f680807bc707e6a928a13da 100644 (file)
@@ -190,7 +190,7 @@ gtk_hruler_draw_ticks (GtkRuler *ruler)
   lower = ruler->lower / ruler->metric->pixels_per_unit;
 
   if ((upper - lower) == 0) 
-goto out;
+    goto out;
 
   increment = (gdouble) width / (upper - lower);
 
index 8e76e20aaecd496def45e39a5a7a5ff6250c5250..e0862669aee7ba4a5b503c4f79dc87c6d8329b8c 100644 (file)
@@ -191,7 +191,7 @@ gtk_vruler_draw_ticks (GtkRuler *ruler)
   lower = ruler->lower / ruler->metric->pixels_per_unit;
 
   if ((upper - lower) == 0)
-goto out;
+    goto out;
 
   increment = (gdouble) width / (upper - lower);